home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 273_01.zip / PUTSA.CC < prev    next >
Text File  |  1993-04-04  |  379b  |  14 lines

  1. put_sa(char *ch, int attr)
  2. /* This will put the character string pointer to by *ch on the screen
  3.    at the current cursor location using attribute attr.
  4. */
  5. {
  6.         while(*ch) {
  7.                 if((*ch != '\x0d') && (*ch !='\x0a')) {
  8.                         put_ca(*ch,attr,1);
  9.                         cur_rt();
  10.                 }
  11.                 ch++;
  12.         }
  13. }
  14.